home *** CD-ROM | disk | FTP | other *** search
/ Best of www.BestZips.com (Collector's Edition) / Best of WWW.BESTZIPS.COM Collector's Edition (JCSM Shareware) (JCS Marketing).ISO / bprogrms / mawin10c.zip / _SETUP.1 / defualt.qcf < prev    next >
Text File  |  1996-11-17  |  6KB  |  116 lines

  1. //---------------------------------------------------------------------------------------------------------------------------------------------------------
  2. // The Market Analyzer for Windows
  3. // (C) Copyright 1994, 1995, 1996, 1997
  4. //     by Jim Dowdle
  5. // Methods shown herein may be used for no other purpose than
  6. // creating and modifying configuration files for use with this product.
  7. //---------------------------------------------------------------------------------------------------------------------------------------------------------
  8.  
  9. // QuoteList Configuration File
  10.  
  11. //---------------------------------------------------------------------------------------------------------------------------------------------------------
  12.  
  13. // this file contains your Internet Site Path (URL) for the root .qtl file;
  14. // defines the download method;
  15. // and contains parsing instructions to be used by the MAWIN generic
  16. // parsing routines
  17.  
  18. // You may edit it as needed if you choose to change the Site used,
  19. // or if the Site format changes
  20.  
  21. // This method of specifying and decoding Web Pages has been chosen to make it
  22. // "easy" to adapt to new pages or changes in pre-defined pages.
  23. // Some users may not wish to get into this level of detail, and others may find
  24. // it easy to use this specifying/formatting scheme to add new pages to your
  25. // daily downloads, or just to keep up with changes.
  26.  
  27. // If you do not wish modify these files, pre-defined files and updates may become 
  28. // available in the near future.
  29.  
  30. //---------------------------------------------------------------------------------------------------------------------------------------------------------
  31. // This is the Site URL including any prefix characters up to the qutoes to be added,
  32. // which will come from the .qtl file automatically as it executes
  33.  
  34. www2.merrill-lynch.ml.com/htbin/indlink?tick=
  35.  
  36. //---------------------------------------------------------------------------------------------------------------------------------------------------------
  37. // the next entry must define the download method.
  38. // the entry will be either "by_page" or "by_quote"
  39. // "by_page" means the page inherently defines the quote information which will be received.
  40. // these are usually index pages which are predefined.
  41.  
  42. // "by_quote" means the quote requests will be appended from the .qtl file automatically
  43.  
  44. by_quote
  45.  
  46. //---------------------------------------------------------------------------------------------------------------------------------------------------------
  47. // the next entry tells MAWIN what delimeter character to add between appended quote symbols
  48.  
  49. // for example:
  50. // www2.merrill-lynch.ml.com/htbin/indlink?tick=dis,hd,xrx,spq
  51. // could be a valid request for this page, and the delimeter ',' is used
  52. // other sites may use '+' or other characters as a delimeter
  53.  
  54. ,
  55.  
  56. // (to determine what delimeter is used, bring up the page using your Web Browser,
  57. // request your stock quotes, and observe the delimeter used...usually shown in the
  58. // top text field of your Browser, as a part of the URL.)
  59.  
  60. // if the method is "by_page", enter nothing here; MAWIN will skip this field
  61. //---------------------------------------------------------------------------------------------------------------------------------------------------------
  62. // next, tell MAWIN what character string to look for as a trigger to begin looking for quotes.
  63. // if you decide to customize your own download site, you can pick this string by first bringing
  64. // up the site using a Web Browser, and use "file save" to save the .htm image of the page.
  65. // then, examine the .htm file using any good text editor, such as WordPad, or Notepad.
  66. // first look for a string which will be used as a trigger to begin looking for quotes.
  67. // for this page, there are two types of quotes.  The first trigger phrase is:
  68.  
  69. Equities
  70.  
  71. //---------------------------------------------------------------------------------------------------------------------------------------------------------
  72. // next, enter the trigger string which indicates the start of a quote
  73. // for this type, it is:
  74.  
  75. <tr>
  76.  
  77. //---------------------------------------------------------------------------------------------------------------------------------------------------------
  78. // MAWIN will automatically find quote data fields as specified by format keywords herein:
  79. // The keywords which may be used are:
  80.  
  81. // Numeric Keyword Identifiers:
  82. // Hi, Low, Bid, Ask, Open, Close, Prev, Change, Volume, Date, PE_Ratio, Dividend, and Temp
  83. // "Temp" will be available to be used to store/handle throwaway numerics between quote data
  84. // "Temp" may be used multiple times
  85.  
  86. // Textual Keyword Identifiers:
  87. // Symbol, Co_name, Time
  88.  
  89. // for this file/site, the parsing commands are:
  90.  
  91. Symbol    Volume    Hi        Low    Close      Prev    Change    Time
  92.  
  93. // up to 20 identifier types per quote may be specified
  94. // modifiers may be needed, to make adjustments of scale, such as this case where volume is
  95. // quoted in 1000's of shares, and must be adjusted to shares.
  96. // supported modifiers are '*' and '/'
  97.  
  98. Volume * 1000
  99.  
  100. //---------------------------------------------------------------------------------------------------------------------------------------------------------
  101. // for this page, there are two types of quotes.
  102. // The second trigger phrase and remaining commands are:
  103. // (currently, a maximum of 2 are allowed)
  104.  
  105. Mutual Funds        // begin looking for new quote pattern
  106. <tr>                    // indicates start of quote
  107. Symbol    Close        Prev        Change        Date
  108.  
  109. //---------------------------------------------------------------------------------------------------------------------------------------------------------
  110. // If you have pulled up this file by external brousing, note that it is also accessable
  111. // under the options menu from the MAWIN market analysis environment.
  112.  
  113. // lines which begin with // are ignored, and may be eliminated or reordered as you wish.
  114.  
  115. //---------------------------------------------------------------------------------------------------------------------------------------------------------
  116.